home *** CD-ROM | disk | FTP | other *** search
/ Champak 29 / Volume 29 - JOGO DISK .iso / Games / little_soldiers.swf / scripts / frame_1 / DoAction.as
Text File  |  2006-11-29  |  911b  |  45 lines

  1. gamelocation = "www.squarecircleco.com";
  2. _quality = "LOW";
  3. Stage.scaleMode = "noScale";
  4. Stage.showMenu = false;
  5. if(this._url.indexOf("file://") != 0)
  6. {
  7.    localGame = false;
  8.    if(this._url.indexOf(gamelocation) == -1)
  9.    {
  10.       gameValid = false;
  11.    }
  12.    else
  13.    {
  14.       gameValid = true;
  15.    }
  16. }
  17. else
  18. {
  19.    localGame = true;
  20.    gameValid = true;
  21. }
  22. gameValid = true;
  23. onEnterFrame = function()
  24. {
  25.    if(getBytesTotal() == getBytesLoaded())
  26.    {
  27.       if(gameValid == false)
  28.       {
  29.          gotoAndStop("stolen");
  30.          onEnterFrame = function()
  31.          {
  32.             gotoAndStop("stolen");
  33.          };
  34.       }
  35.       else
  36.       {
  37.          gotoAndStop("load");
  38.          play();
  39.          onEnterFrame = null;
  40.       }
  41.    }
  42.    lod = "loading - " + Math.floor(100 * getBytesLoaded() / getBytesTotal()) + "%";
  43.    lb._xscale = getBytesLoaded() / getBytesTotal() * 480;
  44. };
  45.